home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
lang
/
sbasic02
/
makefile
< prev
next >
Wrap
Makefile
|
1994-11-04
|
461b
|
22 lines
# SMALL BASIC V0.2 Copyright (C) 1994 James J. Bielman
# Read GNU.LIC for licensing info
#
# Makefile -- Modify to suit your system
# set CC to your C compiler (i use gcc)
CC=gcc
# set your compiler options here
CCOPTS=-g
target: sbasic.exe
# This step is needed for DJGPP
sbasic.exe: sbasic
coff2exe -s /djgpp/bin/go32.exe sbasic
sbasic: sbasic.o exparse.o
$(CC) $(CCOPTS) -o sbasic sbasic.o exparse.o
.c.o:
$(CC) $(CCOPTS) -c $<